home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_09_05
/
9n05067a
< prev
next >
Wrap
Text File
|
1991-03-02
|
184b
|
13 lines
#include <stdio.h>
main()
{
int c;
while (1)
{
c = getch();
printf ("\n Value of c is %d", c);
}
}